home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Workbench Add-On
/
Workbench Add-On - Volume 1.iso
/
BBS-Archive
/
Comm
/
AmiTCP30b2.lha
/
src
/
l
/
inet-handler
/
c.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-04-05
|
638b
|
36 lines
/*
* c.h
*
* Author: Tomi Ollila <too@cs.hut.fi>
*
* Copyright (c) 1993 AmiTCP/IP Group, <amitcp-group@hut.fi>
* All rights reserved.
*
* Created: Wed Sep 15 14:20:40 1993 too
* Last modified: Sat Oct 16 16:53:44 1993 too
*
* $Id: c.h,v 1.1 1993/10/24 12:50:39 too Exp too $
*
* HISTORY
* $Log: c.h,v $
* Revision 1.1 1993/10/24 12:50:39 too
* Initial revision
*
*/
#ifndef _C_H_
#define _C_H_
/*
* prototypes
*/
void bzero(char * mem, int len);
#if 0
int strncasecmp(char *a, char * b, int n);
#endif
int atoi(char * num);
#define isdigit(c) ( (c) >= '0' && (c) <= '9')
#endif /* _C_H_ */